if (intent != null) {
context.startActivity(intent);
} else {
ToastUtils.showMessage(context, R.string.no_browser_found);
}
}
if (intent != null) {
context.startActivity(intent);
} else {
Toast.makeText(context, R.string.no_browser_found, Toast.LENGTH_LONG).show();
}
}